Crazy's Amazing Corner on the Web
/blog/2025/YT Cleanse Week 1/
YT-Challange - Week 1
So this week went pretty well. To the end of the Week it got harder, but that is unrelated to the Challenge. Most days went overall easy, but I also had an out of ordinarily Busy week. Which distracted me from YouTube. But every Day I at least once tried to access YouTube out of Habit which is terrifying that that is. Something I also noticed is the amount of TV I was Watching. For Next week I am definitely going to keep track of that. But I also got things done, that I have been putting of for a while, which was fairly nice. I also feel overall more Productive.
<canvas id="watchtime" style="width: 70%;"></canvas>
<script>
const ctx = document.getElementById('watchtime');
new Chart(ctx, {
type: 'bar',
data: {
labels: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
datasets: [{
label: "This Week",
data: [0.85, 1.25, 0.43, 0.28, 0.91, 0.64, 0.77],
},
{
label: "Last Week",
data: [11.84, 13.36, 16.32, 18.37, 14.88, 14.55, 6.06],
}]
},
options: {
responsive: false,
color: "white",
scales: {
x: {
stacked: false,
},
y: {
stacked: false
}
}
}
});
</script>